home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cc03.arc / HIST_1.C < prev    next >
Text File  |  1986-03-14  |  848b  |  30 lines

  1. #include <stdio.h>
  2.  
  3. main() {
  4.     int    EntryCount ;    /* looping variable--the entry number */
  5.     int    NumEntries ;    /* total number of entries */
  6.     int    StarCount  ;    /* counter of the current number of stars */
  7.     int    Value       ;    /* value of the specific entry */
  8.  
  9.     printf("How many entries will you make? ") ;
  10.     scanf("%d", &NumEntries) ;
  11.     for (EntryCount = 0 ; EntryCount < NumEntries ; EntryCount++) {
  12.         printf("\nFor entry %d, type a value between 0 and 100: ",
  13.             EntryCount + 1) ;
  14.         scanf("%d", &Value) ;
  15.  
  16.         /* First, display the value, then a bar to represent the
  17.            base of the graph. */
  18.  
  19.         printf("%d | ", Value) ;
  20.  
  21.         /* To fit up to 100 stars on a single line, display half the
  22.            number of stars according to Value */
  23.  
  24.         for (StarCount = 0 ; StarCount < Value / 2 ; StarCount++)
  25.             printf("*") ;
  26.  
  27.         printf("\n") ;
  28.     }
  29. }
  30.